home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / rptheaders.sql < prev    next >
Text File  |  2000-05-12  |  759b  |  19 lines

  1. /* RCSVER $Id: rptheaders.sql,v 1.2 2000-04-13 14:35:42-05 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        rptheaders.sql
  6. * Date:        02/24/2000
  7. * memo:        Randy Wood
  8. * Description:    Create the rptheaders table. 
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE rptheaders
  12. (
  13.     report_indx    NUMBER(38),    /* Number unique to the associated report */
  14.                     /* from the rptnames table            */
  15.     rptclass    NUMBER(38),    /* number (column) associated to this heading */
  16.     header    VARCHAR2(20),    /* heading for the reports */
  17.     CONSTRAINT pk_rptheaders PRIMARY KEY (report_indx, rptclass)
  18. );
  19.